$a = 'How are you?'; if (strpos($a, 'are') !== false) { echo 'true'; }
is_string(mixed $value): bool
$haystack = 'This is my haystack that we shall check' $has_A = strpos($haystack, 'A') !== false; $has_a = strpos($haystack, 'a') !== false;